home *** CD-ROM | disk | FTP | other *** search
- #define MyMalloc(n,t) ((t *)mymalloc((unsigned)((n) * sizeof(t))))
- #define MyReAlloc(p,n,t) ((t *)myrealloc((char *)p,(unsigned)((n) * sizeof(t))))
- #define MyRead(p,n,f) myread((char *)(p),sizeof(*(p)),n,f)
- #define MyWrite(p,n,f) mywrite((char *)(p),sizeof(*(p)),n,f)
-
- void MyError(), MySysError();
-
- FILE *MyOpen();
- void MyClose(), myread(), mywrite();
- int MyFileLen();
- char *mymalloc();
-